home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga CD-Sensation: Golden Games
/
Amiga CD-Sensation - Ausgabe 2 - Golden Games (1996)(GTI - Schatztruhe)(DE)[!].iso
/
Adventurer's
/
ImpPro
/
Scripts
/
Demo.character
< prev
next >
Wrap
Text File
|
1995-05-03
|
344b
|
32 lines
/* Sample script for the character module */
options results
address IMPCHAR.1
STATUS stat
say stat.NUMCHARS
say stat.SELECTED
say stat.CHARLEN
SELECTCHAR 0
GETCHAR char
lim = stat.CHARLEN - 1
do i = 0 to lim
say char.i
end
ADDCHAR
charnum = RESULT
SELECTCHAR charnum
GETCHAR char
char.0 = "AREXX"
LOCKLIST
PUTCHAR char
UNLOCKLIST